From 6b87dad19f0d31fca5fded22c7142e9300269668 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nuno=20Gon=C3=A7alves?= Date: Wed, 12 Nov 2025 00:00:43 +0000 Subject: [PATCH] nmap: add build depedency on python-setuptools (fixes #27833) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit python-setuptools no longer comes by default with the python package, so we must depend on it explicitly Signed-off-by: Nuno Gonçalves --- net/nmap/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/nmap/Makefile b/net/nmap/Makefile index c93214cf2a..46431a98d3 100644 --- a/net/nmap/Makefile +++ b/net/nmap/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2017 OpenWrt.org +# Copyright (C) 2006-2025 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -26,6 +26,7 @@ PKG_LICENSE_FILES:=LICENSE PKG_CPE_ID:=cpe:/a:nmap:nmap PKG_BUILD_PARALLEL:=1 +PKG_BUILD_DEPENDS:=python-setuptools/host PKG_INSTALL:=1 PYTHON3_PKG_BUILD:=0 PYTHON3_PKG_FORCE_DISTUTILS_SETUP:=1 -- 2.30.2